home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / DevDisk 65 (1989)(DevWare PD).zip / DevDisk 65 (1989)(DevWare PD).adf / prosuite / eglobal.c < prev    next >
C/C++ Source or Header  |  1990-07-11  |  2KB  |  49 lines

  1. #ifndef EGLOBAL_C
  2. #define EGLOBAL_C
  3.  
  4.  
  5. /* *** eglobal.c ************************************************************
  6.  *
  7.  * XText  --  External Declarations of Global Variables
  8.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  9.  *
  10.  * Copyright (C) 1986, 1987, Robert J. Mical
  11.  * All Rights Reserved.
  12.  *
  13.  * Created for Amiga developers.
  14.  * Any or all of this code can be used in any program as long as this
  15.  * entire notice is retained, ok?  Thanks.
  16.  *
  17.  * The Amiga Programmer's Suite Book 1 is copyrighted but freely distributable.
  18.  * All copyright notices and all file headers must be retained intact.
  19.  * The Amiga Programmer's Suite Book 1 may be compiled and assembled, and the 
  20.  * resultant object code may be included in any software product.  However, no 
  21.  * portion of the source listings or documentation of the Amiga Programmer's 
  22.  * Suite Book 1 may be distributed or sold for profit or in a for-profit 
  23.  * product without the written authorization of the author, RJ Mical.
  24.  * 
  25.  * HISTORY       NAME            DESCRIPTION
  26.  * -----------   --------------  --------------------------------------------
  27.  * 27 Oct 86     RJ              Add XText buffer stuff, prepare for release
  28.  * March 86      RJ              Incorporated this code in Sidecar
  29.  * 26 Jan 86     RJ Mical        Created this file (on my birthday!)
  30.  *
  31.  * *********************************************************************** */
  32.  
  33.  
  34.  
  35. /* === System Global Variables ========================================== */
  36. extern struct IntuitionBase *IntuitionBase;
  37. extern struct GfxBase *GfxBase;
  38. extern struct DiskfontBase *DiskfontBase;
  39.  
  40. extern struct TextAttr SafeFont;
  41.  
  42.  
  43.  
  44. /* === ================================================================== */
  45.  
  46.  
  47. #endif /* of EGLOBAL_C */
  48.  
  49.